TemperatureUnit
Members
A unit of temperature, i.e., fahrenheit, celsius, or kelvin.
It can be any of the following strings: K
, F
, C
.
Luau Type
This is the luau type for TemperatureUnit
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type TemperatureUnit = "K" | "F" | "C"